Add task list demo application

This commit is contained in:
Steve Kinney
2024-09-17 15:38:26 -06:00
parent b13029bffc
commit 4971bda81b
40 changed files with 2545 additions and 773 deletions

View File

@@ -1,7 +0,0 @@
export default {
plugins: {
'@tailwindcss/nesting': {},
tailwindcss: {},
autoprefixer: {},
},
};

View File

@@ -1 +1 @@
import '@testing-library/jest-dom'; // Provides custom matchers
import '@testing-library/jest-dom';

View File

@@ -1,13 +0,0 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./**/*.{html,js}'],
theme: {
extend: {
container: {
center: true,
padding: '1rem',
},
},
},
plugins: [],
};

View File

@@ -1,5 +1,7 @@
import { defineConfig } from 'vite';
import { css } from 'css-configuration';
export default defineConfig({
assetsInclude: ['**/*.html'],
css,
});

View File

@@ -1,7 +1,7 @@
import { defineConfig } from 'vitest/config';
import { mergeConfig } from 'vitest/config';
import config from './vite.config';
export default defineConfig({
assetsInclude: ['**/*.html'],
export default mergeConfig(config, {
test: {
environment: 'happy-dom',
},