Skip to content

Commit 60dd99e

Browse files
committed
fix: component-tests
1 parent f0507ce commit 60dd99e

File tree

3 files changed

+0
-6
lines changed

3 files changed

+0
-6
lines changed

apps/component-tests/vite.config.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { qwikVite } from '@builder.io/qwik/optimizer';
22
import { qwikCity } from '@builder.io/qwik-city/vite';
33
import { defineConfig } from 'vite';
44
import tsconfigPaths from 'vite-tsconfig-paths';
5-
import tailwindcss from '@tailwindcss/vite';
65

76
export default defineConfig({
87
root: 'apps/component-tests',
@@ -19,7 +18,6 @@ export default defineConfig({
1918
tsconfigFileNames: ['tsconfig.app.json'],
2019
}),
2120
tsconfigPaths({ root: '../../' }),
22-
tailwindcss(),
2321
],
2422
server: {
2523
fs: {

packages/kit-headless/vite.config.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import dts from 'vite-plugin-dts';
77
import { viteStaticCopy } from 'vite-plugin-static-copy';
88
import tsconfigPaths from 'vite-tsconfig-paths';
99
import pkg from './package.json';
10-
import tailwindcss from '@tailwindcss/vite';
1110

1211
const { dependencies = {}, peerDependencies = {} } = pkg as any;
1312
const makeRegex = (dep: any) => new RegExp(`^${dep}(/.*)?$`);
@@ -37,7 +36,6 @@ export default defineConfig({
3736
viteStaticCopy({
3837
targets: [{ src: './README.md', dest: './' }],
3938
}),
40-
tailwindcss(),
4139
],
4240
server: {
4341
fs: {

packages/kit-styled/vite.config.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { qwikVite } from '@builder.io/qwik/optimizer';
22
import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin';
3-
import tailwindcss from '@tailwindcss/vite';
43
import { join } from 'path';
54
import { defineConfig } from 'vite';
65
import dts from 'vite-plugin-dts';
@@ -17,7 +16,6 @@ export default defineConfig({
1716
tsconfigPath: join(__dirname, 'tsconfig.lib.json'),
1817
}),
1918
nxViteTsPaths(),
20-
tailwindcss(),
2119
],
2220
server: {
2321
fs: {

0 commit comments

Comments
 (0)