├── .gitignore ├── .prettierrc ├── README.md ├── package.json ├── postcss.config.js ├── public ├── favicon.png ├── global.css └── index.html ├── rollup.config.js └── src ├── App.svelte ├── header.svelte ├── main.js └── utils.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/svelte-tailwind-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/svelte-tailwind-template/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/svelte-tailwind-template/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/svelte-tailwind-template/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/svelte-tailwind-template/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/global.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/svelte-tailwind-template/HEAD/public/index.html -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/svelte-tailwind-template/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/svelte-tailwind-template/HEAD/src/App.svelte -------------------------------------------------------------------------------- /src/header.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/svelte-tailwind-template/HEAD/src/header.svelte -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/svelte-tailwind-template/HEAD/src/main.js -------------------------------------------------------------------------------- /src/utils.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/svelte-tailwind-template/HEAD/src/utils.css --------------------------------------------------------------------------------