Skip to content

Commit

Permalink
chore(examples): add more indications and fix names
Browse files Browse the repository at this point in the history
  • Loading branch information
Vexcited committed Jul 27, 2024
1 parent ce55f0e commit 3a1e102
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
11 changes: 9 additions & 2 deletions examples/tailwindcss/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
/** @type {import('stein-plugin-tailwindcss').SteinTailwindConfig} */
/// NOTE: this file is optional, it was created mostly to support
/// IDE autocompletion. You can still configure TailwindCSS
/// in "stein.config.ts". Configuration you write here will
/// be merged with the default configuration and the
/// configuration written in "stein.config.ts".

/** @type {import('stein-plugin-tailwindcss').TailwindConfig} */
export default {

// Filled automatically by the plugin.
content: [],
}
2 changes: 1 addition & 1 deletion examples/unocss/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "unocss",
"name": "@examples/unocss",
"private": true,
"version": "1.0.0",
"type": "module",
Expand Down
4 changes: 2 additions & 2 deletions examples/unocss/stein.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import {defineConfig} from "@steinjs/core";
// See the documentation for more details.
export default defineConfig({
plugins: [unocss({
injectReset: true,
injectReset: true
})],
development: {
port: 1234
port: 3000
}
});

0 comments on commit 3a1e102

Please sign in to comment.