mirror of
https://github.com/GuerillaStudio/souvenir.git
synced 2024-11-08 10:11:52 +00:00
fix build
This commit is contained in:
parent
3b0bdf2780
commit
0bb91245cc
4 changed files with 5 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
|||
import {
|
||||
makeRectangle,
|
||||
crop
|
||||
} from './rectangle.js'
|
||||
} from '@/services/rectangle.js'
|
||||
|
||||
const FRAMES_PER_SECOND = 10
|
||||
const WIDTH = 200
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import EncodeWorker from './encode.worker.js'
|
||||
import EncodeWorker from '@/services/encode.worker.js'
|
||||
|
||||
const PALETTE_SIZE = 255
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
import Vue from 'vue'
|
||||
import Vuex from 'vuex'
|
||||
|
||||
import { capture } from './services/capture.js'
|
||||
import { encode } from './services/encode.js'
|
||||
import { capture } from '@/services/capture.js'
|
||||
import { encode } from '@/services/encode.js'
|
||||
|
||||
Vue.use(Vuex)
|
||||
|
||||
|
|
|
@ -9,6 +9,7 @@ module.exports = {
|
|||
importWorkboxFrom: 'local'
|
||||
}
|
||||
},
|
||||
parallel: false,
|
||||
configureWebpack: {
|
||||
module: {
|
||||
rules: [
|
||||
|
|
Loading…
Reference in a new issue