Skip to content
This repository has been archived by the owner on Oct 30, 2022. It is now read-only.

Latest commit

 

History

History
29 lines (23 loc) · 474 Bytes

README.md

File metadata and controls

29 lines (23 loc) · 474 Bytes

Webpack seed

A very simple seed to start a modern Single Page App development in no time

how to use

First use:

  • npm install
  • npm start

Next use:

  • npm start

Before final deploy:

  • npm run build
  • profit?

ESlint

To fully enjoy ESlint, please

  • install the official VSCode "ESlint" extension
  • add this to your VSCode settings:
  //...
  "editor.codeActionsOnSave": {
    "source.fixAll.eslint": true
  },
  //...