~cytrogen/masto-fe

ref: dc35e2d7569a293bbda92ee3ecba8d2d4e6a7b64 masto-fe/config/webpack/development.js -rw-r--r-- 1.5 KiB
dc35e2d7 — Cytrogen Rename .scss → .css and remove sass dependency (Phase 9-10) 15 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// Note: You must restart bin/webpack-dev-server for changes to take effect

const { merge } = require("webpack-merge");

const { settings, output } = require("./configuration");
const sharedConfig = require("./shared");

const watchOptions = {};

if (process.env.VAGRANT) {
  // If we are in Vagrant, we can't rely on inotify to update us with changed
  // files, so we must poll instead. Here, we poll every second to see if
  // anything has changed.
  watchOptions.poll = 1000;
}

module.exports = merge(sharedConfig, {
  mode: "development",
  cache: true,
  devtool: "eval-cheap-module-source-map",

  stats: {
    errorDetails: true,
  },

  output: {
    pathinfo: true,
  },

  devServer: {
    compress: settings.dev_server.compress,
    host: settings.dev_server.host,
    port: settings.dev_server.port,
    https: settings.dev_server.https,
    hot: settings.dev_server.hmr,
    historyApiFallback: {
      disableDotRule: true,
    },
    headers: settings.dev_server.headers,
    client: {
      logging: "none",
      overlay: settings.dev_server.overlay,
    },
    static: {
      directory: settings.public_root_path,
      serveIndex: true,
      watch: Object.assign(
        {},
        settings.dev_server.watch_options,
        watchOptions,
      ),
    },
    devMiddleware: {
      publicPath: output.publicPath,
      stats: {
        entrypoints: false,
        errorDetails: false,
        modules: false,
        moduleTrace: false,
      },
      writeToDisk: filePath => /ocr/.test(filePath),
    },
  },
});