Fixes asked for by reviewers

This commit is contained in:
Javier Eguiluz
2017-09-11 06:24:16 -07:00
committed by Fabien Potencier
parent 65a9789d7c
commit 6795d7f360
2 changed files with 18 additions and 17 deletions
+4 -4
View File
@@ -3,9 +3,9 @@
"@symfony/webpack-encore": "^0.9.1"
},
"scripts": {
"dev-server": "./node_modules/.bin/encore dev-server",
"dev": "./node_modules/.bin/encore dev",
"watch": "./node_modules/.bin/encore dev --watch",
"build": "./node_modules/.bin/encore production"
"dev-server": "encore dev-server",
"dev": "encore dev",
"watch": "encore dev --watch",
"build": "encore production"
}
}
+14 -13
View File
@@ -1,23 +1,24 @@
var Encore = require('@symfony/webpack-encore');
Encore
// directory where all compiled assets will be stored
.setOutputPath('web/build/')
// what's the public path to this directory (relative to your project's document root dir)
// the project directory where compiled assets will be stored
.setOutputPath('public/build/')
// the public path used by the web server to access the previous directory
.setPublicPath('/build')
// empty the outputPath dir before each build
.cleanupOutputBeforeBuild()
// allow sass/scss files to be processed
.enableSassLoader()
.enableSourceMaps(!Encore.isProduction())
// will output as web/build/app.js
// .addEntry('app', './assets/js/app.js')
// will output as web/build/global.css
// .addStyleEntry('global', './assets/css/app.scss')
// allow legacy applications to use $/jQuery as a global variable
// uncomment to create hashed filenames (e.g. app.abc123.css)
// .enableVersioning(Encore.isProduction())
// uncomment to define the assets of the project
// .addEntry('js/app', './assets/js/app.js')
// .addStyleEntry('css/app', './assets/css/app.scss')
// uncomment if you use Sass/SCSS files
// .enableSassLoader()
// uncomment for legacy applications that require $/jQuery as a global variable
// .autoProvidejQuery()
// create hashed filenames (e.g. app.abc123.css)
// .enableVersioning()
;
module.exports = Encore.getWebpackConfig();