Move Game List to static folder

This commit is contained in:
Sam Carlton 2020-11-27 12:42:58 -06:00
parent 4255174dd3
commit b22fd148f1
5 changed files with 6 additions and 6 deletions

View file

@ -18,7 +18,7 @@ const storeAppList = async function (builder) {
const gamesListPath = path.join(
// builder.nuxt.options.buildDir,
builder.nuxt.options.srcDir,
'/game-list.json'
'/static/game-list.json'
)
const appList = await buildAppList()
@ -60,7 +60,7 @@ export default {
routes() {
return Promise.all([
import('./static/app-list.json'),
import('./game-list.json')
import('./static/game-list.json')
])
.then(([
importedAppList,