diff --git a/wp-config.php b/wp-config.php new file mode 100644 index 0000000..111af27 --- /dev/null +++ b/wp-config.php @@ -0,0 +1,76 @@ +I X(5R+s2^S+Xki qD/zD,-0uHtpQ4~AS|r8${o:s59m6qYd' ); +define( 'NONCE_KEY', 'lS=*[nd%h1Eq&gjls#JwMvgTWLvzXI8Ny>!V#H|t[^g~~?^q#)1Q;9NmPBhX[##A' ); +define( 'AUTH_SALT', '|mN-YfpW;l9&Gd5zfSaN6eWdN}]WnohvWA?Pc`RKeTY5Q]B?SN1/3}H.[6OE3[np/' ); +define( 'LOGGED_IN_SALT', 'u2oC-6`#T]&;/ sNAwQ?%xHd^(*O' ); + +/** + * WordPress Database Table prefix. + * + * You can have multiple installations in one database if you give each + * a unique prefix. Only numbers, letters, and underscores please! + */ +$table_prefix = 'wp_'; + + + + +/* That's all, stop editing! Happy blogging. */ + +/** Absolute path to the WordPress directory. */ +if ( ! defined( 'ABSPATH' ) ) + define( 'ABSPATH', dirname( __FILE__ ) . '/' ); + +/** Sets up WordPress vars and included files. */ +require_once ABSPATH . 'wp-settings.php'; diff --git a/wp-content/themes/twentynineteen-tailwindcss/package.json b/wp-content/themes/twentynineteen-tailwindcss/package.json index 1aa5286..89df72c 100644 --- a/wp-content/themes/twentynineteen-tailwindcss/package.json +++ b/wp-content/themes/twentynineteen-tailwindcss/package.json @@ -5,6 +5,8 @@ "watch": "npm run build -- --watch" }, "devDependencies": { + "browser-sync": "^2.26.3", + "browser-sync-webpack-plugin": "2.0.1", "cross-env": "^5.2.0", "laravel-mix": "^4.0.14", "postcss-nested": "^4.1.2", diff --git a/wp-content/themes/twentynineteen-tailwindcss/webpack.mix.js b/wp-content/themes/twentynineteen-tailwindcss/webpack.mix.js index a1d6f64..1d7bc9a 100644 --- a/wp-content/themes/twentynineteen-tailwindcss/webpack.mix.js +++ b/wp-content/themes/twentynineteen-tailwindcss/webpack.mix.js @@ -4,3 +4,12 @@ mix.postCss('src/css/style.css', '', [ require('tailwindcss')('./tailwind.config.js'), require('postcss-nested')(), ]) + +mix.browserSync({ + proxy: 'wordcamp2019.docksal', + notify: false, + files: [ + '*.php', + 'src/**/*.css' + ], +})