Skip to content

Commit

Permalink
store
Browse files Browse the repository at this point in the history
  • Loading branch information
hsyhhssyy committed Jun 20, 2024
1 parent added2e commit f5f30db
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/router/desktop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const desktopRoutes: RouteRecordRaw[] = [
{
path: 'schulte-grid',
name: 'schulte-grid',
component: () => EmptyContainer,
component: EmptyContainer,
children: [
{
path: 'game/:roomId',
Expand All @@ -71,7 +71,7 @@ const desktopRoutes: RouteRecordRaw[] = [
{
path: 'cypher-challenge',
name: 'cypher-challenge',
component: () => EmptyContainer,
component: EmptyContainer,
children: [
{
path: 'game/:roomId',
Expand All @@ -88,7 +88,7 @@ const desktopRoutes: RouteRecordRaw[] = [
{
path: 'skin-guess',
name: 'skin-guess',
component: () => EmptyContainer,
component: EmptyContainer,
children: [
{
path: 'game/:roomId',
Expand Down
4 changes: 2 additions & 2 deletions src/router/mobile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const mobileRoutes: RouteRecordRaw[] = [
{
path: 'schulte-grid',
name: 'schulte-grid-mobile',
component: () => EmptyContainer,
component: EmptyContainer,
children: [
{
path: 'game/:roomId',
Expand All @@ -71,7 +71,7 @@ const mobileRoutes: RouteRecordRaw[] = [
{
path: 'cypher-challenge',
name: 'cypher-challenge-mobile',
component: () => EmptyContainer,
component: EmptyContainer,
children: [
{
path: 'game/:roomId',
Expand Down
3 changes: 3 additions & 0 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ import { NaiveUiResolver } from 'unplugin-vue-components/resolvers'

// https://vitejs.dev/config/
export default defineConfig({
build: {
sourcemap: true, // 启用 source map
},
plugins: [
vue(),
AutoImport({
Expand Down

0 comments on commit f5f30db

Please sign in to comment.