Browse Source

fix #4356 : place sw.js to assets/sw.js (#4357)

pull/4/head
Satoshi KOJIMA 6 years ago
committed by Eugen Rochko
parent
commit
e54cc15cbd
3 changed files with 2 additions and 2 deletions
  1. +0
    -1
      .gitignore
  2. +1
    -1
      config/webpack/production.js
  3. +1
    -0
      public/sw.js

+ 0
- 1
.gitignore View File

@ -21,7 +21,6 @@ public/system
public/assets
public/packs
public/packs-test
public/sw.js
.env
.env.production
node_modules/

+ 1
- 1
config/webpack/production.js View File

@ -48,7 +48,7 @@ module.exports = merge(sharedConfig, {
ServiceWorker: {
entry: path.join(__dirname, '../../app/javascript/mastodon/service_worker/entry.js'),
cacheName: 'mastodon',
output: '../sw.js',
output: '../assets/sw.js',
publicPath: '/sw.js',
minify: true,
},

+ 1
- 0
public/sw.js View File

@ -0,0 +1 @@
assets/sw.js

Loading…
Cancel
Save