webpack-config-starter
v0.0.33
Published
generic react es2017 webpack config
Readme
npm i --save webpack-config-starterAdd a webpack.config.js file to the root of your project and include:
module.exports = require("webpack-config-starter")Add a webpack block to package.json with your entry files:
"webpack": {
"entry": {
"index.html": "./src/index.html",
"index.js": "./src/index.js"
},
}Want to expose environment variables to your javascript? Use a .env file in the root of your project. The variables will be accessible on process.env, such as process.env.PUBLIC_KEY.
PUBLIC_KEY=asdf