webpack.config.js 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. var path = require('path');
  2. var webpack = require('webpack');
  3. var HtmlWebpackPlugin = require('html-webpack-plugin');
  4. var BrowserSyncPlugin = require('browser-sync-webpack-plugin');
  5. // var CopyWebpackPlugin = require('copy-webpack-plugin');
  6. var { CleanWebpackPlugin } = require('clean-webpack-plugin');
  7. require('dotenv').config({path: __dirname + '/.env'});
  8. const JOJOAPPS_SERVER = '149.91.81.94';
  9. const JOJOAPPS_SERVER_PORT = 2610;
  10. // Env variables have effect in app : main.js & socket-service.js & index.html
  11. // Also in Server : mariadb-connector.js
  12. var definePlugin = new webpack.DefinePlugin({
  13. 'process.env.DEV': JSON.stringify(JSON.parse(process.env.DEV || 'false')),
  14. 'process.env.WEB': JSON.stringify(JSON.parse(process.env.WEB || 'false')),
  15. 'process.env.CORDOVA': JSON.stringify(JSON.parse(process.env.CORDOVA || 'false')),
  16. 'process.env.SERVER_HOST': JSON.stringify(process.env.SERVER_HOST || JOJOAPPS_SERVER),
  17. 'process.env.SERVER_PORT': JSON.stringify(process.env.SERVER_PORT || JOJOAPPS_SERVER_PORT)
  18. });
  19. var outpath = './webpack/';
  20. if (process.env.CORDOVA === "true") {
  21. outpath = './www/';
  22. console.log('CORDOVA environment : output in ',outpath);
  23. } else if (process.env.WEB === "true") {
  24. outpath = './www_web/';
  25. console.log('WEB environment : output in ',outpath);
  26. } else {
  27. console.log('DEV env : output in ', outpath);
  28. }
  29. // new CopyWebpackPlugin([
  30. // {
  31. // context: path.resolve(__dirname, 'src', 'assets'),
  32. // from: '**/*',
  33. // to: path.resolve(__dirname, outpath, 'assets')
  34. // }
  35. // ]),
  36. module.exports = {
  37. devtool: 'cheap-source-map',
  38. mode: 'development',
  39. entry: {
  40. app: path.resolve(__dirname, 'src/main.js')
  41. },
  42. output: {
  43. filename: 'app.bundle.js',
  44. path: path.resolve(__dirname, outpath)
  45. },
  46. plugins: [
  47. definePlugin,
  48. new CleanWebpackPlugin(),
  49. new HtmlWebpackPlugin({
  50. template: './src/index.html'
  51. }),
  52. new BrowserSyncPlugin({
  53. host: process.env.IP || 'localhost',
  54. port: process.env.PORT || 3000,
  55. server: {
  56. baseDir: [outpath, './build']
  57. },
  58. browser: ["firefox"]
  59. }),
  60. new BrowserSyncPlugin({
  61. host: process.env.IP || 'localhost',
  62. port: process.env.PORT || 3005,
  63. server: {
  64. baseDir: [outpath, './build']
  65. },
  66. browser: ["firefox"]
  67. }),
  68. new webpack.DefinePlugin({
  69. CANVAS_RENDERER: JSON.stringify(true),
  70. WEBGL_RENDERER: JSON.stringify(true)
  71. })
  72. ],
  73. module: {
  74. rules: [
  75. { test: /\.js$/, exclude: /(node_modules|server)/, loaders: "babel-loader" },
  76. {
  77. test: /\.(png|svg|jpg|gif)$/,
  78. use: {
  79. loader: 'file-loader',
  80. options: {
  81. esModule: false
  82. }
  83. }
  84. },
  85. {
  86. test: /\.html$/,
  87. exclude: /index.html/,
  88. use: [
  89. {
  90. loader: 'html-loader',
  91. options: { minimize: true }
  92. }
  93. ]
  94. },
  95. {
  96. test: [/\.vert$/, /\.frag$/],
  97. use: "raw-loader"
  98. }
  99. ]
  100. }
  101. };