2021-07-20 13:04:47 +02:00
|
|
|
var Encore = require('@symfony/webpack-encore');
|
|
|
|
|
|
|
|
// Manually configure the runtime environment if not already configured yet by the "encore" command.
|
|
|
|
// It's useful when you use tools that rely on webpack.config.js file.
|
|
|
|
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
|
2023-12-22 13:53:10 +01:00
|
|
|
.setPublicPath('/build')
|
|
|
|
.setManifestKeyPrefix('')
|
2021-07-20 13:04:47 +02:00
|
|
|
|
|
|
|
// Entry config
|
|
|
|
.addEntry('app', './assets/js/app.js')
|
|
|
|
.addEntry('fullcalendar', './assets/js/fullcalendar.js')
|
|
|
|
.addEntry('dropzone', './assets/js/dropzone.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
|
|
|
|
*
|
|
|
|
* Enable & configure other features below. For a full
|
|
|
|
* list of features, see:
|
|
|
|
* https://symfony.com/doc/current/frontend.html#adding-more-features
|
|
|
|
*/
|
|
|
|
.cleanupOutputBeforeBuild()
|
|
|
|
.enableBuildNotifications()
|
|
|
|
.enableSourceMaps(!Encore.isProduction())
|
|
|
|
// enables hashed filenames (e.g. app.abc123.css)
|
|
|
|
.enableVersioning(Encore.isProduction())
|
|
|
|
|
|
|
|
// enables @babel/preset-env polyfills
|
|
|
|
.configureBabelPresetEnv((config) => {
|
|
|
|
config.useBuiltIns = 'usage';
|
|
|
|
config.corejs = 3;
|
|
|
|
})
|
|
|
|
|
|
|
|
.copyFiles([
|
|
|
|
{from: './node_modules/ckeditor/', to: 'ckeditor/[path][name].[ext]', pattern: /\.(js|css)$/, includeSubdirectories: false},
|
|
|
|
{from: './node_modules/ckeditor/adapters', to: 'ckeditor/adapters/[path][name].[ext]'},
|
|
|
|
{from: './node_modules/ckeditor/lang', to: 'ckeditor/lang/[path][name].[ext]'},
|
|
|
|
{from: './node_modules/ckeditor/plugins', to: 'ckeditor/plugins/[path][name].[ext]'},
|
|
|
|
{from: './node_modules/ckeditor/skins', to: 'ckeditor/skins/[path][name].[ext]'}
|
|
|
|
])
|
|
|
|
|
|
|
|
// enables Sass/SCSS support
|
|
|
|
//.enableSassLoader()
|
|
|
|
|
|
|
|
// uncomment if you use TypeScript
|
|
|
|
//.enableTypeScriptLoader()
|
|
|
|
|
|
|
|
// uncomment to get integrity="..." attributes on your script & link tags
|
|
|
|
// requires WebpackEncoreBundle 1.4 or higher
|
|
|
|
//.enableIntegrityHashes(Encore.isProduction())
|
|
|
|
|
|
|
|
// uncomment if you're having problems with a jQuery plugin
|
|
|
|
//.autoProvidejQuery()
|
|
|
|
|
|
|
|
// uncomment if you use API Platform Admin (composer req api-admin)
|
|
|
|
//.enableReactPreset()
|
|
|
|
//.addEntry('admin', './assets/js/admin.js')
|
|
|
|
;
|
|
|
|
|
|
|
|
module.exports = Encore.getWebpackConfig();
|