mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-03-31 15:07:47 +01:00
40 lines
1.2 KiB
JavaScript
40 lines
1.2 KiB
JavaScript
const Encore = require('@symfony/webpack-encore');
|
|
|
|
// Manually configure the runtime environment if not already configured by the "encore" command.
|
|
if (!Encore.isRuntimeEnvironmentConfigured()) {
|
|
Encore.configureRuntimeEnvironment(process.env.NODE_ENV || 'dev');
|
|
}
|
|
|
|
Encore
|
|
// directory where compiled assets will be stored
|
|
.setOutputPath('public/build/')
|
|
// public path used by the web server to access the output path
|
|
.setPublicPath('/build')
|
|
|
|
/*
|
|
* ENTRY CONFIG
|
|
*
|
|
* Each entry will result in one JavaScript file (e.g. app.js)
|
|
* and one CSS file (e.g. app.css) if your JavaScript imports CSS.
|
|
*/
|
|
.addEntry('app', './assets/app.js')
|
|
|
|
// When enabled, Webpack "splits" your files into smaller pieces for greater optimization.
|
|
.splitEntryChunks()
|
|
|
|
// will require an extra script tag for runtime.js
|
|
// but, you probably want this, unless you're building a single-page app
|
|
.enableSingleRuntimeChunk()
|
|
|
|
/*
|
|
* FEATURE CONFIG
|
|
*/
|
|
.cleanupOutputBeforeBuild()
|
|
.enableBuildNotifications()
|
|
.enableSourceMaps(!Encore.isProduction())
|
|
// enables hashed filenames (e.g. app.abc123.css)
|
|
.enableVersioning(Encore.isProduction())
|
|
;
|
|
|
|
module.exports = Encore.getWebpackConfig();
|