Package config hoisted a level as it is it's own package now

This commit is contained in:
Nik
2022-08-26 21:33:35 +10:00
parent 848980f888
commit 5f066c27ca

View File

@@ -19,12 +19,12 @@ const config = {
assets: 'build',
fallback: 'index.html', // index.html (SPA) | null (SSR)
precompress: false
}),
package: {
// strip test files from packaging
files: (filepath) => {
return filepath.indexOf('test') == -1 ? true : false
}
})
},
package: {
// strip test files from packaging
files: (filepath) => {
return filepath.indexOf('test') == -1 ? true : false
}
}
};