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.

104 lines
4.4KB

  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. 'toastr': path.join(__dirname, 'node_modules/toastr'),
  25. /*'adminlte': path.resolve(__dirname, './node_modules/admin-lte/dist/js/adminlte.min.js'),
  26. 'adminltePlugin': path.resolve(__dirname, './node_modules/admin-lte/plugins/'),
  27. 'admin-lte-css': path.resolve(__dirname, './node_modules/admin-lte/dist/css/adminlte.css'),
  28. 'core-js': path.resolve(__dirname, './node_modules/core-js'),
  29. 'jquery': path.join(__dirname, 'node_modules/jquery/src/jquery'),
  30. 'select2': path.join(__dirname, 'node_modules/select2/dist/js/select2.js'),
  31. 'select2-css': path.join(__dirname, 'node_modules/select2/dist/css/select2.min.css'),*/
  32. //'select2-bootstrap-theme': path.join(__dirname, 'node_modules/select2-bootstrap-5-theme/dist/select2-bootstrap-5-theme.min.css')
  33. })
  34. /*
  35. * ENTRY CONFIG
  36. *
  37. * Each entry will result in one JavaScript file (e.g. app.js)
  38. * and one CSS file (e.g. app.css) if your JavaScript imports CSS.
  39. */
  40. .addEntry('adminlte-common', './Lc/SovBundle/Resources/assets/app/adminlte/common/app.common.js')
  41. .addEntry('adminlte-index', './Lc/SovBundle/Resources/assets/app/adminlte/index/app.index.js')
  42. .addEntry('adminlte-form', './Lc/SovBundle/Resources/assets/app/adminlte/form/app.form.js')
  43. .addEntry('adminlte-sort', './Lc/SovBundle/Resources/assets/app/adminlte/sort/app.sort.js')
  44. .addEntry('adminlte-field-filemanager', './Lc/SovBundle/Resources/assets/app/adminlte/field/filemanager/app.filemanager.js')
  45. .addEntry('adminlte-field-collection', './Lc/SovBundle/Resources/assets/app/adminlte/field/collection/app.collection.js')
  46. // enables the Symfony UX Stimulus bridge (used in assets/bootstrap.js)
  47. .enableStimulusBridge('./assets/controllers.json')
  48. // When enabled, Webpack "splits" your files into smaller pieces for greater optimization.
  49. .splitEntryChunks()
  50. // will require an extra script tag for runtime.js
  51. // but, you probably want this, unless you're building a single-page app
  52. .enableSingleRuntimeChunk()
  53. /*
  54. * FEATURE CONFIG
  55. *
  56. * Enable & configure other features below. For a full
  57. * list of features, see:
  58. * https://symfony.com/doc/current/frontend.html#adding-more-features
  59. */
  60. .cleanupOutputBeforeBuild()
  61. .enableBuildNotifications()
  62. .enableSourceMaps(!Encore.isProduction())
  63. // enables hashed filenames (e.g. app.abc123.css)
  64. .enableVersioning(Encore.isProduction())
  65. .configureBabel((config) => {
  66. config.plugins.push('@babel/plugin-proposal-class-properties');
  67. })
  68. // enables @babel/preset-env polyfills
  69. .configureBabelPresetEnv((config) => {
  70. config.useBuiltIns = 'usage';
  71. config.corejs = 3;
  72. })
  73. // enables Sass/SCSS support
  74. //.enableSassLoader()
  75. // uncomment if you use TypeScript
  76. //.enableTypeScriptLoader()
  77. // uncomment if you use React
  78. //.enableReactPreset()
  79. // uncomment to get integrity="..." attributes on your script & link tags
  80. // requires WebpackEncoreBundle 1.4 or higher
  81. //.enableIntegrityHashes(Encore.isProduction())
  82. // uncomment if you're having problems with a jQuery plugin
  83. //.autoProvidejQuery()
  84. ;
  85. module.exports = Encore.getWebpackConfig();