You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

100 line
4.1KB

  1. const Encore = require('@symfony/webpack-encore');
  2. // Manually configure the runtime environment if not already configured yet by the "encore" command.
  3. // It's useful when you use tools that rely on webpack.config.js file.
  4. if (!Encore.isRuntimeEnvironmentConfigured()) {
  5. Encore.configureRuntimeEnvironment(process.env.NODE_ENV || 'dev');
  6. }
  7. const path = require('path');
  8. Encore
  9. // directory where compiled assets will be stored
  10. .setOutputPath('public/build/')
  11. // public path used by the web server to access the output path
  12. .setPublicPath('/build')
  13. // only needed for CDN's or sub-directory deploy
  14. //.setManifestKeyPrefix('build/')
  15. .enableSassLoader()
  16. .addAliases({
  17. 'core-js': path.join(__dirname, 'node_modules/core-js'),
  18. 'jquery': path.join(__dirname, 'node_modules/jquery/src/jquery'),
  19. 'jquery-ui': path.join(__dirname, 'node_modules/jquery-ui-dist/jquery-ui'),
  20. 'adminlte-js': path.join(__dirname, 'node_modules/admin-lte/dist/js/adminlte.min.js'),
  21. 'adminlte-css': path.join(__dirname, 'node_modules/admin-lte/build/scss/adminlte.scss'),
  22. 'fontawesome-css': path.join(__dirname, 'node_modules/admin-lte/plugins/fontawesome-free/css/all.css'),
  23. 'adminlte-plugin': path.join(__dirname, 'node_modules/admin-lte/plugins/'),
  24. /*'adminlte': path.resolve(__dirname, './node_modules/admin-lte/dist/js/adminlte.min.js'),
  25. 'adminltePlugin': path.resolve(__dirname, './node_modules/admin-lte/plugins/'),
  26. 'admin-lte-css': path.resolve(__dirname, './node_modules/admin-lte/dist/css/adminlte.css'),
  27. 'core-js': path.resolve(__dirname, './node_modules/core-js'),
  28. 'jquery': path.join(__dirname, 'node_modules/jquery/src/jquery'),
  29. 'select2': path.join(__dirname, 'node_modules/select2/dist/js/select2.js'),
  30. 'select2-css': path.join(__dirname, 'node_modules/select2/dist/css/select2.min.css'),*/
  31. //'select2-bootstrap-theme': path.join(__dirname, 'node_modules/select2-bootstrap-5-theme/dist/select2-bootstrap-5-theme.min.css')
  32. })
  33. /*
  34. * ENTRY CONFIG
  35. *
  36. * Each entry will result in one JavaScript file (e.g. app.js)
  37. * and one CSS file (e.g. app.css) if your JavaScript imports CSS.
  38. */
  39. .addEntry('adminlte-common', './Lc/SovBundle/Resources/assets/app/adminlte/common/app.common.js')
  40. .addEntry('adminlte-field-filemanager', './Lc/SovBundle/Resources/assets/app/adminlte/field/filemanager/app.filemanager.js')
  41. .addEntry('adminlte-field-collection', './Lc/SovBundle/Resources/assets/app/adminlte/field/collection/app.collection.js')
  42. // enables the Symfony UX Stimulus bridge (used in assets/bootstrap.js)
  43. .enableStimulusBridge('./assets/controllers.json')
  44. // When enabled, Webpack "splits" your files into smaller pieces for greater optimization.
  45. .splitEntryChunks()
  46. // will require an extra script tag for runtime.js
  47. // but, you probably want this, unless you're building a single-page app
  48. .enableSingleRuntimeChunk()
  49. /*
  50. * FEATURE CONFIG
  51. *
  52. * Enable & configure other features below. For a full
  53. * list of features, see:
  54. * https://symfony.com/doc/current/frontend.html#adding-more-features
  55. */
  56. .cleanupOutputBeforeBuild()
  57. .enableBuildNotifications()
  58. .enableSourceMaps(!Encore.isProduction())
  59. // enables hashed filenames (e.g. app.abc123.css)
  60. .enableVersioning(Encore.isProduction())
  61. .configureBabel((config) => {
  62. config.plugins.push('@babel/plugin-proposal-class-properties');
  63. })
  64. // enables @babel/preset-env polyfills
  65. .configureBabelPresetEnv((config) => {
  66. config.useBuiltIns = 'usage';
  67. config.corejs = 3;
  68. })
  69. // enables Sass/SCSS support
  70. //.enableSassLoader()
  71. // uncomment if you use TypeScript
  72. //.enableTypeScriptLoader()
  73. // uncomment if you use React
  74. //.enableReactPreset()
  75. // uncomment to get integrity="..." attributes on your script & link tags
  76. // requires WebpackEncoreBundle 1.4 or higher
  77. //.enableIntegrityHashes(Encore.isProduction())
  78. // uncomment if you're having problems with a jQuery plugin
  79. //.autoProvidejQuery()
  80. ;
  81. module.exports = Encore.getWebpackConfig();