Skip to content
Snippets Groups Projects
Verified Commit 4aabeb10 authored by Louis's avatar Louis :fire:
Browse files

Create tiles for banimate, musicbox and autotile

parents
No related branches found
No related tags found
No related merge requests found
Pipeline #455 passed with stage
in 23 seconds
static/favicon.png

1.53 KiB

import adapter from '@sveltejs/adapter-static';
import { vitePreprocess } from '@sveltejs/kit/vite';
const dev = process.argv.includes('dev');
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
adapter: adapter({
// default options are shown. On some platforms
// these options are set automatically — see below
pages: 'public',
assets: 'public',
precompress: true,
strict: true
}),
paths: {
base: dev ? '' : '/rust-libs',
}
},
preprocess: vitePreprocess()
};
export default config;
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {},
},
plugins: [],
}
import { expect, test } from '@playwright/test';
test('index page has expected h1', async ({ page }) => {
await page.goto('/');
await expect(page.getByRole('heading', { name: 'Welcome to SvelteKit' })).toBeVisible();
});
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [sveltekit()]
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment