webpack.config.js 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. var Encore = require('@symfony/webpack-encore');
  2. Encore
  3. // directory where compiled assets will be stored
  4. .setOutputPath('public/build/')
  5. // public path used by the web server to access the output path
  6. .setPublicPath('/build')
  7. // only needed for CDN's or sub-directory deploy
  8. //.setManifestKeyPrefix('build/')
  9. /*
  10. * ENTRY CONFIG
  11. *
  12. * Add 1 entry for each "page" of your app
  13. * (including one that's included on every page - e.g. "app")
  14. *
  15. * Each entry will result in one JavaScript file (e.g. app.js)
  16. * and one CSS file (e.g. app.css) if you JavaScript imports CSS.
  17. */
  18. .addEntry('app', './assets/js/app.js')
  19. //.addEntry('tags', './assets/js/tagSelect2.js')
  20. //.addEntry('page1', './assets/js/page1.js')
  21. //.addEntry('page2', './assets/js/page2.js')
  22. // When enabled, Webpack "splits" your files into smaller pieces for greater optimization.
  23. .splitEntryChunks()
  24. // will require an extra script tag for runtime.js
  25. // but, you probably want this, unless you're building a single-page app
  26. .enableSingleRuntimeChunk()
  27. /*
  28. * FEATURE CONFIG
  29. *
  30. * Enable & configure other features below. For a full
  31. * list of features, see:
  32. * https://symfony.com/doc/current/frontend.html#adding-more-features
  33. */
  34. .cleanupOutputBeforeBuild()
  35. .enableBuildNotifications()
  36. .enableSourceMaps(!Encore.isProduction())
  37. // enables hashed filenames (e.g. app.abc123.css)
  38. .enableVersioning(Encore.isProduction())
  39. // enables @babel/preset-env polyfills
  40. .configureBabel(() => {}, {
  41. useBuiltIns: 'usage',
  42. corejs: 3
  43. })
  44. // enables Sass/SCSS support
  45. .enableSassLoader()
  46. // uncomment if you use TypeScript
  47. //.enableTypeScriptLoader()
  48. // uncomment to get integrity="..." attributes on your script & link tags
  49. // requires WebpackEncoreBundle 1.4 or higher
  50. //.enableIntegrityHashes()
  51. // uncomment if you're having problems with a jQuery plugin
  52. .autoProvidejQuery()
  53. // uncomment if you use API Platform Admin (composer req api-admin)
  54. //.enableReactPreset()
  55. //.addEntry('admin', './assets/js/admin.js')
  56. ;
  57. module.exports = Encore.getWebpackConfig();